home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / sparcmgr / src.zoo / src / stub_lib / blit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-03  |  970 b   |  28 lines

  1. /*                        Copyright (c) 1987 Bellcore
  2.  *                            All Rights Reserved
  3.  *       Permission is granted to copy or use this program, EXCEPT that it
  4.  *       may not be sold for profit, the copyright notice must be reproduced
  5.  *       on copies, and credit should be given to Bellcore where it is due.
  6.  *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  */
  8. /*    $Header: blit.c,v 4.1 88/06/21 13:07:59 bianchi Exp $
  9.     $Source: /tmp/mgrsrc/src/oblit/RCS/blit.c,v $
  10. */
  11. static char    RCSid_[] = "$Source: /tmp/mgrsrc/src/oblit/RCS/blit.c,v $$Revision: 4.1 $";
  12.  
  13. /*  stub bitblit code */
  14.  
  15. #include "bitmap.h"
  16.  
  17. /*
  18.  *  General memory-to-memory rasterop
  19.  */
  20.  
  21. mem_rop(dest, dx, dy, width, height, func, source, sx, sy)
  22. int sx, sy, dx, dy;        /* properly clipped source and dest */
  23. int width, height;        /* rectangle to be transferred */
  24. BITMAP *source, *dest;        /* bit map pointers */
  25. int func;            /* rasterop function */
  26.    {
  27.    }
  28.